home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cfengine_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  61 lines

  1. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #
  3. # GPL
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(14315);
  9.  script_version ("$Revision: 1.3 $");
  10.  name["english"] = "cfengine detection and local identification";
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] = "
  14. The cfengine service is running on this port.  
  15.  
  16. Cfengine is a language-based system for testing and configuring
  17. Unix and Windows systems attached to a TCP/IP network.
  18.  
  19. Risk factor : None";
  20.  
  21.  script_description(english:desc["english"]);
  22.  
  23.  summary["english"] = "check for the presence of cfengine with local identification version checks if possible";
  24.  script_summary(english:summary["english"]);
  25.  
  26.  script_category(ACT_GATHER_INFO);
  27.  
  28.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  29.  family["english"] = "General";
  30.  family["francais"] = "General";
  31.  script_family(english:family["english"], francais:family["francais"]);
  32.  script_require_ports(5308);
  33.  
  34.  if ( defined_func("bn_random") ) script_dependencies("ssh_get_info.nasl");
  35.  exit(0);
  36. }
  37.  
  38.  
  39. port = 5308;
  40.  
  41. if ( ! get_port_state(port) ) exit(0);
  42.  
  43. soc = open_sock_tcp(port);
  44. if ( ! soc ) exit(0);
  45.  
  46.  
  47. ver = get_kb_item("cfengine/version");
  48. if ( ! ver ) exit(0);
  49.  
  50.  
  51. set_kb_item(name:"cfengine/running", value:TRUE);
  52.  
  53. report = "
  54. cfengine version "+ver+" is running on this port.
  55. cfengine is a language-based system for testing and configuring 
  56. unix and windows systems attached to a TCP/IP network.
  57.  
  58. Risk factor : None";
  59.  
  60. security_note(port:port, data:report);
  61.